home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / ldscripts / elf_x86_64.xc < prev    next >
Encoding:
LD Linker Script  |  2009-02-10  |  7.9 KB  |  222 lines

  1. /* Script for -z combreloc: combine and sort reloc sections */
  2. OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64",
  3.           "elf64-x86-64")
  4. OUTPUT_ARCH(i386:x86-64)
  5. ENTRY(_start)
  6. SEARCH_DIR("/usr/i486-linux-gnu/lib64"); SEARCH_DIR("/usr/x86_64-linux-gnu/lib64"); SEARCH_DIR("/usr/local/lib64"); SEARCH_DIR("/lib64"); SEARCH_DIR("/usr/lib64"); SEARCH_DIR("/usr/x86_64-linux-gnu/lib"); SEARCH_DIR("/usr/local/lib"); SEARCH_DIR("/lib"); SEARCH_DIR("/usr/lib");
  7. SECTIONS
  8. {
  9.   /* Read-only sections, merged into text segment: */
  10.   PROVIDE (__executable_start = 0x400000); . = 0x400000 + SIZEOF_HEADERS;
  11.   .interp         : { *(.interp) }
  12.   .note.gnu.build-id : { *(.note.gnu.build-id) }
  13.   .hash           : { *(.hash) }
  14.   .gnu.hash       : { *(.gnu.hash) }
  15.   .dynsym         : { *(.dynsym) }
  16.   .dynstr         : { *(.dynstr) }
  17.   .gnu.version    : { *(.gnu.version) }
  18.   .gnu.version_d  : { *(.gnu.version_d) }
  19.   .gnu.version_r  : { *(.gnu.version_r) }
  20.   .rel.dyn        :
  21.     {
  22.       *(.rel.init)
  23.       *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*)
  24.       *(.rel.fini)
  25.       *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*)
  26.       *(.rel.data.rel.ro* .rel.gnu.linkonce.d.rel.ro.*)
  27.       *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*)
  28.       *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*)
  29.       *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*)
  30.       *(.rel.ctors)
  31.       *(.rel.dtors)
  32.       *(.rel.got)
  33.       *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*)
  34.       *(.rel.ldata .rel.ldata.* .rel.gnu.linkonce.l.*)
  35.       *(.rel.lbss .rel.lbss.* .rel.gnu.linkonce.lb.*)
  36.       *(.rel.lrodata .rel.lrodata.* .rel.gnu.linkonce.lr.*)
  37.     }
  38.   .rela.dyn       :
  39.     {
  40.       *(.rela.init)
  41.       *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
  42.       *(.rela.fini)
  43.       *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
  44.       *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
  45.       *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
  46.       *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
  47.       *(.rela.ctors)
  48.       *(.rela.dtors)
  49.       *(.rela.got)
  50.       *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
  51.       *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*)
  52.       *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*)
  53.       *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*)
  54.     }
  55.   .rel.plt        : { *(.rel.plt) }
  56.   .rela.plt       : { *(.rela.plt) }
  57.   .init           :
  58.   {
  59.     KEEP (*(.init))
  60.   } =0x90909090
  61.   .plt            : { *(.plt) }
  62.   .text           :
  63.   {
  64.     *(.text .stub .text.* .gnu.linkonce.t.*)
  65.     /* .gnu.warning sections are handled specially by elf32.em.  */
  66.     *(.gnu.warning)
  67.   } =0x90909090
  68.   .fini           :
  69.   {
  70.     KEEP (*(.fini))
  71.   } =0x90909090
  72.   PROVIDE (__etext = .);
  73.   PROVIDE (_etext = .);
  74.   PROVIDE (etext = .);
  75.   .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
  76.   .rodata1        : { *(.rodata1) }
  77.   .eh_frame_hdr : { *(.eh_frame_hdr) }
  78.   .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) }
  79.   .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) }
  80.   /* Adjust the address for the data segment.  We want to adjust up to
  81.      the same address within the page on the next page up.  */
  82.   . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
  83.   /* Exception handling  */
  84.   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
  85.   .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
  86.   /* Thread Local Storage sections  */
  87.   .tdata      : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  88.   .tbss          : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
  89.   .preinit_array     :
  90.   {
  91.     PROVIDE_HIDDEN (__preinit_array_start = .);
  92.     KEEP (*(.preinit_array))
  93.     PROVIDE_HIDDEN (__preinit_array_end = .);
  94.   }
  95.   .init_array     :
  96.   {
  97.      PROVIDE_HIDDEN (__init_array_start = .);
  98.      KEEP (*(SORT(.init_array.*)))
  99.      KEEP (*(.init_array))
  100.      PROVIDE_HIDDEN (__init_array_end = .);
  101.   }
  102.   .fini_array     :
  103.   {
  104.     PROVIDE_HIDDEN (__fini_array_start = .);
  105.     KEEP (*(.fini_array))
  106.     KEEP (*(SORT(.fini_array.*)))
  107.     PROVIDE_HIDDEN (__fini_array_end = .);
  108.   }
  109.   .ctors          :
  110.   {
  111.     /* gcc uses crtbegin.o to find the start of
  112.        the constructors, so we make sure it is
  113.        first.  Because this is a wildcard, it
  114.        doesn't matter if the user does not
  115.        actually link against crtbegin.o; the
  116.        linker won't look for a file to match a
  117.        wildcard.  The wildcard also means that it
  118.        doesn't matter which directory crtbegin.o
  119.        is in.  */
  120.     KEEP (*crtbegin.o(.ctors))
  121.     KEEP (*crtbegin?.o(.ctors))
  122.     /* We don't want to include the .ctor section from
  123.        the crtend.o file until after the sorted ctors.
  124.        The .ctor section from the crtend file contains the
  125.        end of ctors marker and it must be last */
  126.     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
  127.     KEEP (*(SORT(.ctors.*)))
  128.     KEEP (*(.ctors))
  129.   }
  130.   .dtors          :
  131.   {
  132.     KEEP (*crtbegin.o(.dtors))
  133.     KEEP (*crtbegin?.o(.dtors))
  134.     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
  135.     KEEP (*(SORT(.dtors.*)))
  136.     KEEP (*(.dtors))
  137.   }
  138.   .jcr            : { KEEP (*(.jcr)) }
  139.   .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro* .gnu.linkonce.d.rel.ro.*) }
  140.   .dynamic        : { *(.dynamic) }
  141.   .got            : { *(.got) }
  142.   . = DATA_SEGMENT_RELRO_END (24, .);
  143.   .got.plt        : { *(.got.plt) }
  144.   .data           :
  145.   {
  146.     *(.data .data.* .gnu.linkonce.d.*)
  147.     SORT(CONSTRUCTORS)
  148.   }
  149.   .data1          : { *(.data1) }
  150.   _edata = .; PROVIDE (edata = .);
  151.   __bss_start = .;
  152.   .bss            :
  153.   {
  154.    *(.dynbss)
  155.    *(.bss .bss.* .gnu.linkonce.b.*)
  156.    *(COMMON)
  157.    /* Align here to ensure that the .bss section occupies space up to
  158.       _end.  Align after .bss to ensure correct alignment even if the
  159.       .bss section disappears because there are no input sections.
  160.       FIXME: Why do we need it? When there is no .bss section, we don't
  161.       pad the .data section.  */
  162.    . = ALIGN(. != 0 ? 64 / 8 : 1);
  163.   }
  164.   .lbss   :
  165.   {
  166.     *(.dynlbss)
  167.     *(.lbss .lbss.* .gnu.linkonce.lb.*)
  168.     *(LARGE_COMMON)
  169.   }
  170.   . = ALIGN(64 / 8);
  171.   .lrodata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
  172.   {
  173.     *(.lrodata .lrodata.* .gnu.linkonce.lr.*)
  174.   }
  175.   .ldata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
  176.   {
  177.     *(.ldata .ldata.* .gnu.linkonce.l.*)
  178.     . = ALIGN(. != 0 ? 64 / 8 : 1);
  179.   }
  180.   . = ALIGN(64 / 8);
  181.   _end = .; PROVIDE (end = .);
  182.   . = DATA_SEGMENT_END (.);
  183.   /* Stabs debugging sections.  */
  184.   .stab          0 : { *(.stab) }
  185.   .stabstr       0 : { *(.stabstr) }
  186.   .stab.excl     0 : { *(.stab.excl) }
  187.   .stab.exclstr  0 : { *(.stab.exclstr) }
  188.   .stab.index    0 : { *(.stab.index) }
  189.   .stab.indexstr 0 : { *(.stab.indexstr) }
  190.   .comment       0 : { *(.comment) }
  191.   /* DWARF debug sections.
  192.      Symbols in the DWARF debugging sections are relative to the beginning
  193.      of the section so we begin them at 0.  */
  194.   /* DWARF 1 */
  195.   .debug          0 : { *(.debug) }
  196.   .line           0 : { *(.line) }
  197.   /* GNU DWARF 1 extensions */
  198.   .debug_srcinfo  0 : { *(.debug_srcinfo) }
  199.   .debug_sfnames  0 : { *(.debug_sfnames) }
  200.   /* DWARF 1.1 and DWARF 2 */
  201.   .debug_aranges  0 : { *(.debug_aranges) }
  202.   .debug_pubnames 0 : { *(.debug_pubnames) }
  203.   /* DWARF 2 */
  204.   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
  205.   .debug_abbrev   0 : { *(.debug_abbrev) }
  206.   .debug_line     0 : { *(.debug_line) }
  207.   .debug_frame    0 : { *(.debug_frame) }
  208.   .debug_str      0 : { *(.debug_str) }
  209.   .debug_loc      0 : { *(.debug_loc) }
  210.   .debug_macinfo  0 : { *(.debug_macinfo) }
  211.   /* SGI/MIPS DWARF 2 extensions */
  212.   .debug_weaknames 0 : { *(.debug_weaknames) }
  213.   .debug_funcnames 0 : { *(.debug_funcnames) }
  214.   .debug_typenames 0 : { *(.debug_typenames) }
  215.   .debug_varnames  0 : { *(.debug_varnames) }
  216.   /* DWARF 3 */
  217.   .debug_pubtypes 0 : { *(.debug_pubtypes) }
  218.   .debug_ranges   0 : { *(.debug_ranges) }
  219.   .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
  220.   /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
  221. }
  222.